home *** CD-ROM | disk | FTP | other *** search
/ 100 Plus Great Games 2 / 100PLUSV2.BIN / games / Corners.dxr / playing cards_56.ls < prev    next >
Encoding:
Text File  |  2002-01-25  |  358 b   |  12 lines

  1. global foundation, reserve, franklist, fsuitlist, equal, currentselect, points
  2.  
  3. on prepareFrame me
  4.   foundation = [:]
  5.   reserve = [:]
  6.   equal = 0
  7.   currentselect = 0
  8.   points = 0
  9.   franklist = ["ace", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "jack", "queen", "king"]
  10.   fsuitlist = ["hearts", "diamonds", "clubs", "spades"]
  11. end
  12.